home *** CD-ROM | disk | FTP | other *** search
/ Aminet 45 / Aminet 45 (2001)(GTI - Schatztruhe)[!][Oct 2001].iso / Aminet / game / role / ldmud-3.2-bin.lha / mud / doc / efun / ceil < prev    next >
Text File  |  2001-08-08  |  491b  |  20 lines

  1. SYNOPSIS
  2.         float ceil (int|float arg)
  3.  
  4. DESCRIPTION
  5.         Round the <arg>ument upwards the nearest whole number, returning
  6.         that value. If the <arg>ument is an integer, the result will be
  7.         the argument value, converted to float.
  8.  
  9. EXAMPLES
  10.         ceil(4.5)  - return 5.0
  11.         ceil(-4.5) - return -4.0
  12.         ceil(5)    - return 5.0
  13.  
  14. HISTORY
  15.         Introduced in LDMud 3.2.7.
  16.         LDMud 3.2.9 added integers as argument values.
  17.  
  18. SEE ALSO
  19.         abs(E), floor(E)
  20.